home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / DiskUtil / CD-ROM / PlayCDDA / Install < prev    next >
Text File  |  1995-11-24  |  638b  |  32 lines

  1. (if (= @language "deutsch")
  2.     (
  3.         (SET Intro "Wilkommen zum Installer-Script für PlayCDDA")
  4.         (SET WBin  "Wohin soll PlayCDDA hinkopiert werden ?")
  5.     )
  6. )
  7. (if (= @language "english")
  8.     (
  9.         (SET Intro "Welcome to the installer-script for PlayCDDA")
  10.         (SET WBin   "Where do you want me to place PlayCDDA ?")
  11.     )
  12. )
  13.  
  14. (MESSAGE Intro)
  15.  
  16. (SET XX
  17.     (ASKDIR
  18.         (PROMPT WBin)
  19.         (HELP "")
  20.         (DEFAULT "sys:")
  21.     )
  22. )
  23.  
  24. (SET Place (tackon XX "PlayCDDA"))
  25. (run (cat "makedir \""Place"\""))
  26.  
  27. (COPYFILES (SOURCE ":DiskUtil/CD-ROM/PlayCDDA")
  28.            (DEST    Place)
  29.            (ALL)
  30.            (INFOS)
  31. )
  32.